This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
~Zach Ekkisonlen 20.Jan.04 01:13 PM a Web browser Domino Designer6.0.2 CF1Windows 2000
My current site has a menu that when clicked places a view in an IFRAME using JavaScript.
<a href="javascript:PlaceView('SOPAll')">
function PlaceView(viewname){
document.all.view.src="http://servername/dbname.nsf/" + viewname + "?OpenView"
This works fine, however, I do not like the way Domino generates the view. I would like to use CSS to style the views.
I have read you can get a better hold of a views style by embedding it on a form. Is there a way to do this like I did above (Using the variable viewname)? Or do I have to create separate forms for each view?